home *** CD-ROM | disk | FTP | other *** search
/ The Games Machine 76 / XENIATGM66.iso / Indiana Jones / Indiana Jones.exe / RESOURCE / PREVIEW.GOB / cog_tem_ambbridges.cog < prev    next >
Text File  |  1999-11-15  |  2KB  |  69 lines

  1. # Jones 3D Cog Script
  2. #
  3. # TEM_AmbBridges.cog
  4. #
  5. # [TRM]
  6. #
  7. # (C) 1999 LucasArts Entertainment Co. All Rights Reserved
  8. # ========================================================================================
  9.  
  10. symbols
  11.  
  12.     message        entered
  13.     message     pulse
  14.  
  15.     thing        soundPos0        nolink
  16.     thing        soundPos1        nolink
  17.     thing        soundPos2        nolink
  18.     
  19.     sector      start_Amb1      linkID=1
  20.     sector      start_Amb2      linkID=1
  21.     sector      start_Amb3      linkID=1
  22.     
  23.     sector      stop_Amb1       linkID=0
  24.     sector      stop_Amb2       linkID=0
  25.     sector      stop_Amb3       linkID=0
  26.  
  27.     sound        ambient0=tem_bridge_b.wav   local
  28.     sound        ambient1=tem_bridge_c.wav   local
  29.     
  30.     flex        vol=1.0
  31.     flex        minDist=5.0
  32.     flex        maxDist=12.0
  33.     
  34.     int         soundsOn=0      local
  35.     
  36. end
  37.  
  38. # ========================================================================================
  39.  
  40. code
  41.  
  42. entered:
  43.  
  44.     if((GetSenderID() == 1) && (soundsOn == 0))
  45.     {
  46.         soundsOn = 1;
  47.         setpulse(2.0);
  48.     }
  49.     
  50.     if(GetSenderID() == 0)
  51.     {
  52.         soundsOn = 0;
  53.         SetPulse(0.0);
  54.     }
  55.     
  56.     return;
  57.  
  58. # ========================================================================================
  59.  
  60. pulse:
  61.  
  62.     PlaySoundThing(ambient0[RandBetween(0, 1)], soundPos0[RandBetween(0, 2)], vol, minDist, maxDist, 0);
  63.     
  64.     return;
  65.  
  66. # ========================================================================================
  67.  
  68. end
  69.